mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
19 lines
323 B
Nix
19 lines
323 B
Nix
|
{ lib
|
||
|
, buildDunePackage
|
||
|
, tezos-stdlib
|
||
|
, tezos-base
|
||
|
}:
|
||
|
|
||
|
buildDunePackage {
|
||
|
pname = "tezos-version";
|
||
|
inherit (tezos-stdlib) version src useDune2 preBuild doCheck;
|
||
|
|
||
|
propagatedBuildInputs = [
|
||
|
tezos-base
|
||
|
];
|
||
|
|
||
|
meta = tezos-stdlib.meta // {
|
||
|
description = "Tezos: version information generated from Git";
|
||
|
};
|
||
|
}
|