tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
zsa-udev-rules: unstable-2020-12-16 -> 2.1.3
Florian Franzen
4 years ago
efdc5d05
aa64f174
+5
-6
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
zsa-udev-rules
default.nix
+5
-6
pkgs/os-specific/linux/zsa-udev-rules/default.nix
···
1
{ lib, stdenv, fetchFromGitHub }:
2
3
-
stdenv.mkDerivation {
4
pname = "zsa-udev-rules";
5
-
version = "unstable-2020-12-16";
6
7
-
# TODO: use version and source from nixpkgs/pkgs/development/tools/wally-cli/default.nix after next release
8
src = fetchFromGitHub {
9
owner = "zsa";
10
repo = "wally";
11
-
rev = "e5dde3c700beab39fb941c6941e55535bf9b2af6";
12
-
sha256 = "0pkybi32r1hrmpa1mc8qlzhv7xy5n5rr5ah25lbr0cipp1bda417";
13
};
14
15
-
# it only installs files
16
dontConfigure = true;
17
dontBuild = true;
18
dontFixup = true;
···
1
{ lib, stdenv, fetchFromGitHub }:
2
3
+
stdenv.mkDerivation rec {
4
pname = "zsa-udev-rules";
5
+
version = "2.1.3";
6
0
7
src = fetchFromGitHub {
8
owner = "zsa";
9
repo = "wally";
10
+
rev = "${version}-linux";
11
+
sha256 = "mZzXKFKlO/jAitnqzfvmIHp46A+R3xt2gOhVC3qN6gM=";
12
};
13
14
+
# Only copies udevs rules
15
dontConfigure = true;
16
dontBuild = true;
17
dontFixup = true;