nixpkgs/pkgs/development/libraries/openbsm/default.nix
Pascal Wittmann 79e2f03969
openbsm: add license
see issue #43716
2018-08-09 12:33:28 +02:00

24 lines
589 B
Nix

{ stdenv, fetchFromGitHub, lib }:
stdenv.mkDerivation rec {
pname = "openbsm";
name = "${pname}-${version}";
version = "1.1";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "${lib.toUpper (builtins.replaceStrings ["." "-"] ["_" "_"] name)}";
sha256 = "0b98359hd8mm585sh145ss828pg2y8vgz38lqrb7nypapiyqdnd1";
};
patches = [ ./bsm-add-audit_token_to_pid.patch ];
meta = {
homepage = http://www.openbsm.org/;
platforms = lib.platforms.unix;
maintainers = with lib.maintainers; [ matthewbauer ];
license = lib.licenses.bsd2;
};
}