Unverified Commit d4188088 authored by figsoda's avatar figsoda Committed by GitHub
Browse files

Merge pull request #233228 from nagy/woof

woof: 2020-12-17 -> 2022-01-13
parents 9689eb7d 48d2bad0
Loading
Loading
Loading
Loading
+7 −10
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, python3 }:

stdenv.mkDerivation rec {
  version = "2020-12-17";
stdenv.mkDerivation {
  pname = "woof";
  version = "2022-01-13";

  src = fetchFromGitHub {
    owner = "simon-budig";
    repo = "woof";
    rev = "4aab9bca5b80379522ab0bdc5a07e4d652c375c5";
    sha256 = "0ypd2fs8isv6bqmlrdl2djgs5lnk91y1c3rn4ar6sfkpsqp9krjn";
    rev = "f51e9db264118d4cbcd839348c4a6223fda49813";
    sha256 = "sha256-tk55q2Ew2mZkQtkxjWCuNgt9t+UbjH4llIJ42IruqGY=";
  };

  propagatedBuildInputs = [ python3 ];

  dontUnpack = true;

  installPhase = ''
    mkdir -p $out/bin
    cp $src/woof $out/bin/woof
    chmod +x $out/bin/woof
    runHook preInstall
    install -Dm555 -t $out/bin woof
    runHook postInstall
  '';

  meta = with lib; {
@@ -29,4 +27,3 @@ stdenv.mkDerivation rec {
    maintainers = with maintainers; [ matthiasbeyer ];
  };
}