nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 buildDunePackage,
3 fetchpatch,
4 conan,
5 alcotest,
6 crowbar,
7 fmt,
8 rresult,
9}:
10
11buildDunePackage {
12 pname = "conan-unix";
13 inherit (conan) version src meta;
14
15 patches = fetchpatch {
16 url = "https://github.com/mirage/conan/commit/16872a71be3ef2870d32df849e7abcbaec4fe95d.patch";
17 hash = "sha256-/j9nNGOklzNrdIPW7SMNhKln9EMXiXmvPmNRpXc/l/Y=";
18 };
19
20 propagatedBuildInputs = [
21 conan
22 ];
23
24 doCheck = true;
25
26 checkInputs = [
27 alcotest
28 crowbar
29 fmt
30 rresult
31 ];
32}