We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2db882d commit 32f7adaCopy full SHA for 32f7ada
pkgs/by-name/li/lix-diff/package.nix
@@ -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