.files/nix/packages/by-name/ruler/package.nix

19 lines
447 B
Nix

{
haskellPackages,
haskell,
fetchFromGitea,
}: let
inherit (haskell.lib.compose) justStaticExecutables;
drv =
haskellPackages.callCabal2nix "ruler"
(fetchFromGitea {
domain = "git.confusedcompiler.org";
owner = "leana8959";
repo = "ruler";
rev = "0bcd312e774636496ed0cdc69f6910104b1a6118";
hash = "sha256-gWW5rcL3NI0BExEVqXL+avk7z1/4WYEwEwjtZjqSXNM=";
})
{};
in
justStaticExecutables drv