summary refs log tree commit diff
path: root/pkgs/os-specific/linux/pflask/default.nix
blob: 92294b58e42adb9cd015ac348471079529e181ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ lib, stdenv, fetchFromGitHub, python, wafHook }:

stdenv.mkDerivation rec {
  pname = "pflask";
  version = "unstable-2015-12-17";

  src = fetchFromGitHub {
    owner = "ghedo";
    repo = "pflask";
    rev = "599418bb6453eaa0ccab493f9411f13726c1a636";
    hash = "sha256-0RjitZd2JUK7WUEJuw4qhUx3joY5OI0Hh74mTzp7GmY=";
  };

  nativeBuildInputs = [ wafHook ];
  buildInputs = [ python ];

  meta = {
    description = "Lightweight process containers for Linux";
    homepage = "https://ghedo.github.io/pflask/";
    license = lib.licenses.bsd2;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ ];
  };
}