diff options
| author | Baitinq <[email protected]> | 2022-09-10 21:24:33 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-09-10 21:24:33 +0200 |
| commit | 445094992fea4f6461f352f58b9a7b767ed1ae3a (patch) | |
| tree | b77d279e86da442e6d7f5e09d29fe537a463e7f0 /packages/smart-wallpaper/default.nix | |
| parent | Packages: Remove mov-cli (diff) | |
| download | nixos-config-445094992fea4f6461f352f58b9a7b767ed1ae3a.tar.gz nixos-config-445094992fea4f6461f352f58b9a7b767ed1ae3a.tar.bz2 nixos-config-445094992fea4f6461f352f58b9a7b767ed1ae3a.zip | |
Packages: Remove smart-wallpaper
Already included in nixpkgs
Diffstat (limited to 'packages/smart-wallpaper/default.nix')
| -rw-r--r-- | packages/smart-wallpaper/default.nix | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/packages/smart-wallpaper/default.nix b/packages/smart-wallpaper/default.nix deleted file mode 100644 index 14895af..0000000 --- a/packages/smart-wallpaper/default.nix +++ /dev/null @@ -1,19 +0,0 @@ -{ stdenv, lib, fetchFromGitHub, makeWrapper, bash, xdpyinfo, killall, xwinwrap }: -stdenv.mkDerivation { - pname = "smart-wallpaper"; - version = "1.0"; - src = fetchFromGitHub { - owner = "Baitinq"; - repo = "smart-wallpaper"; - rev = "154acddeb4b63c19beacc6a68248dd02797d9cca"; - sha256 = "sha256-fRK3N+UnBPXpvx4Z64JC5TstUi//l5jtrm+rFDxIQUs="; - }; - buildInputs = [ bash ]; - nativeBuildInputs = [ makeWrapper ]; - installPhase = '' - mkdir -p $out/bin - cp smart-wallpaper $out/bin/smart-wallpaper - wrapProgram $out/bin/smart-wallpaper \ - --prefix PATH : ${lib.makeBinPath [ bash xdpyinfo killall xwinwrap ]} - ''; -} |