tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pflask: switch to fetchFromGitHub
Felix Buehler
4 years ago
c217af17
056df0bd
+10
-9
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
pflask
default.nix
+10
-9
pkgs/os-specific/linux/pflask/default.nix
···
1
1
-
{ lib, stdenv, fetchurl, python, wafHook }:
1
1
+
{ lib, stdenv, fetchFromGitHub, python, wafHook }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
pname = "pflask";
5
5
-
version = "git-2015-12-17";
6
6
-
rev = "599418bb6453eaa0ccab493f9411f13726c1a636";
5
5
+
version = "unstable-2015-12-17";
7
6
8
8
-
src = fetchurl {
9
9
-
url = "https://github.com/ghedo/pflask/archive/${rev}.tar.gz";
10
10
-
sha256 = "2545fca37f9da484b46b6fb5e3a9bbba6526a9725189fe4af5227ef6e6fca440";
7
7
+
src = fetchFromGitHub {
8
8
+
owner = "ghedo";
9
9
+
repo = "pflask";
10
10
+
rev = "599418bb6453eaa0ccab493f9411f13726c1a636";
11
11
+
hash = "sha256-0RjitZd2JUK7WUEJuw4qhUx3joY5OI0Hh74mTzp7GmY=";
11
12
};
12
13
13
14
nativeBuildInputs = [ wafHook ];
···
15
16
16
17
meta = {
17
18
description = "Lightweight process containers for Linux";
18
18
-
homepage = "https://ghedo.github.io/pflask/";
19
19
-
license = lib.licenses.bsd2;
20
20
-
platforms = lib.platforms.linux;
19
19
+
homepage = "https://ghedo.github.io/pflask/";
20
20
+
license = lib.licenses.bsd2;
21
21
+
platforms = lib.platforms.linux;
21
22
maintainers = with lib.maintainers; [ ];
22
23
};
23
24
}