meh: 2015-04-11 -> 2018-10-22 (#135299)

* meh: 2015-04-11 -> 2018-10-22

* Update pkgs/applications/graphics/meh/default.nix

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by

Jörg Thalheim
Sandro
and committed by
GitHub
5d8e6ff9 f795a37d

+5 -6
+5 -6
pkgs/applications/graphics/meh/default.nix
··· 1 { lib, stdenv, fetchFromGitHub, libX11, libXext, libjpeg, libpng, giflib }: 2 3 stdenv.mkDerivation { 4 - name = "meh-unstable-2015-04-11"; 5 6 src = fetchFromGitHub { 7 owner = "jhawthorn"; 8 repo = "meh"; 9 - rev = "4ab1c75f97cb70543db388b3ed99bcfb7e94c758"; 10 - sha256 = "1j1n3m9hjhz4faryai97jq7cr6a322cqrd878gpkm9nrikap3bkk"; 11 }; 12 13 - installPhase = '' 14 - make PREFIX=$out install 15 - ''; 16 17 outputs = [ "out" "man" ]; 18
··· 1 { lib, stdenv, fetchFromGitHub, libX11, libXext, libjpeg, libpng, giflib }: 2 3 stdenv.mkDerivation { 4 + pname = "meh"; 5 + version = "unstable-2018-10-22"; 6 7 src = fetchFromGitHub { 8 owner = "jhawthorn"; 9 repo = "meh"; 10 + rev = "69f653a1f16d11b12e5b600e808a740898f3223e"; 11 + sha256 = "sha256-srSwoaajW4H4+kmE7NQAqVz9d/1q2XQ5ayQaOcGwzI0="; 12 }; 13 14 + installFlags = [ "PREFIX=${placeholder "out"}" ]; 15 16 outputs = [ "out" "man" ]; 17