Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
986 B
Nix
42 lines
986 B
Nix
# This file defines language-nix-unstable, used by maintainers/scripts/haskell/regenerate-hackage-packages.sh.
|
|
{
|
|
mkDerivation,
|
|
base,
|
|
deepseq,
|
|
fetchzip,
|
|
hspec,
|
|
lens,
|
|
lib,
|
|
parsec-class,
|
|
pretty,
|
|
QuickCheck,
|
|
}:
|
|
mkDerivation {
|
|
pname = "language-nix";
|
|
version = "2.3.0-unstable-2025-09-17";
|
|
src = fetchzip {
|
|
url = "https://github.com/NixOS/cabal2nix/archive/3cc36a5df16a10bac9a858208845e3d05b79845d.tar.gz";
|
|
sha256 = "1z1knv2ggm9ddyl0v120nhcnjmq50z7q1m88qj7rfz51gx1ifnim";
|
|
};
|
|
postUnpack = "sourceRoot+=/language-nix; echo source root reset to $sourceRoot";
|
|
libraryHaskellDepends = [
|
|
base
|
|
deepseq
|
|
lens
|
|
parsec-class
|
|
pretty
|
|
QuickCheck
|
|
];
|
|
testHaskellDepends = [
|
|
base
|
|
hspec
|
|
lens
|
|
parsec-class
|
|
pretty
|
|
QuickCheck
|
|
];
|
|
homepage = "https://github.com/NixOS/cabal2nix/tree/master/language-nix#readme";
|
|
description = "Data types and functions to represent the Nix language";
|
|
license = lib.licenses.bsd3;
|
|
}
|