stepreduce: init at unstable-2020-04-30

authored by

Evils and committed by
Bjørn Forsman
d204d558 7e8b5802

+33
+31
pkgs/applications/misc/stepreduce/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitLab 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "stepreduce"; 8 + version = "unstable-2020-04-30"; 9 + 10 + src = fetchFromGitLab { 11 + owner = "sethhillbrand"; 12 + repo = "stepreduce"; 13 + rev = "e89091c33b67e2a18584e1fe3560bfd48ae98773"; 14 + hash = "sha256-bCseBQ6J3sWFt0kzaRkV11lwzOGvNPebvQ6w4OJaMBs="; 15 + }; 16 + 17 + installPhase = '' 18 + runHook preInstall 19 + 20 + install -Dm755 stepreduce $out/bin/stepreduce 21 + 22 + runHook prostInstall 23 + ''; 24 + 25 + meta = with lib; { 26 + description = "Reduces STEP file size by removing redundancy"; 27 + homepage = "https://gitlab.com/sethhillbrand/stepreduce"; 28 + license = licenses.gpl3Plus; 29 + maintainers = with maintainers; [ evils ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 41334 41334 41335 41335 steamcontroller = callPackage ../misc/drivers/steamcontroller { }; 41336 41336 41337 + stepreduce = callPackage ../applications/misc/stepreduce { }; 41338 + 41337 41339 stern = callPackage ../applications/networking/cluster/stern { }; 41338 41340 41339 41341 streamripper = callPackage ../applications/audio/streamripper { };