treewide: stdenv.lib -> lib
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{ mkDerivation, callPackage, buildPackages
|
||||
, async, base, bytestring, containers, fetchFromGitLab, mtl
|
||||
, parallel-io, parsec, stdenv, stm, transformers
|
||||
, parallel-io, parsec, lib, stdenv, stm, transformers
|
||||
}:
|
||||
let
|
||||
z3 = callPackage ./z3.nix { gomp = null; z3 = buildPackages.z3; };
|
||||
@@ -26,6 +26,6 @@ mkDerivation rec {
|
||||
transformers
|
||||
];
|
||||
description = "Safety and Liveness Analysis of Petri Nets with SMT solvers";
|
||||
license = stdenv.lib.licenses.gpl3;
|
||||
maintainers = with stdenv.lib.maintainers; [ raskin ];
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = with lib.maintainers; [ raskin ];
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{ mkDerivation, array, async, base, bytestring, containers
|
||||
, crackNum, deepseq, directory, doctest, filepath, generic-deriving
|
||||
, ghc, Glob, hlint, mtl, pretty, process, QuickCheck, random
|
||||
, stdenv, syb, tasty, tasty-golden, tasty-hunit, tasty-quickcheck
|
||||
, lib, stdenv, syb, tasty, tasty-golden, tasty-hunit, tasty-quickcheck
|
||||
, template-haskell, time, z3
|
||||
}:
|
||||
mkDerivation {
|
||||
@@ -22,5 +22,5 @@ mkDerivation {
|
||||
testSystemDepends = [ z3 ];
|
||||
homepage = "http://leventerkok.github.com/sbv/";
|
||||
description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
license = lib.licenses.bsd3;
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ mkDerivation, fetchpatch
|
||||
, base, containers, gomp, hspec, QuickCheck, stdenv
|
||||
, base, containers, gomp, hspec, QuickCheck, lib, stdenv
|
||||
, transformers, z3
|
||||
}:
|
||||
mkDerivation {
|
||||
@@ -13,7 +13,7 @@ mkDerivation {
|
||||
testHaskellDepends = [ base hspec QuickCheck ];
|
||||
homepage = "https://github.com/IagoAbal/haskell-z3";
|
||||
description = "Bindings for the Z3 Theorem Prover";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
license = lib.licenses.bsd3;
|
||||
doCheck = false;
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
|
||||
Reference in New Issue
Block a user