Skip to content

Commit 32f7ada

Browse files
committed
lix-diff: init at 1.0.1
1 parent 2db882d commit 32f7ada

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
lib,
3+
rustPlatform,
4+
fetchFromGitHub,
5+
}:
6+
rustPlatform.buildRustPackage (finalAttrs: {
7+
pname = "lix-diff";
8+
version = "1.0.1";
9+
10+
src = fetchFromGitHub {
11+
owner = "tgirlcloud";
12+
repo = "lix-diff";
13+
tag = "v${finalAttrs.version}";
14+
hash = "sha256-apjYXFdvxLZjhcN1wV7Y/LKNuWtWtCZM0h1VFg/znVo=";
15+
};
16+
17+
useFetchCargoVendor = true;
18+
cargoHash = "sha256-u3aFmPcceLP7yPdWWoPmOnQEbM0jhULs/kPweymQcZ8=";
19+
20+
meta = {
21+
homepage = "https://github.com/isabelroses/lix-diff";
22+
description = "lix plugin for diffing two generations";
23+
license = lib.licenses.mit;
24+
maintainers = with lib.maintainers; [ isabelroses ];
25+
mainProgram = "lix-diff";
26+
};
27+
})

0 commit comments

Comments
 (0)