Skip to content

Commit

Permalink
ssocr: unstable-2018-08-11 -> 2.22.1 (#172444)
Browse files Browse the repository at this point in the history
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
Co-authored-by: Thiago Kenji Okada <thiagokokada@gmail.com>
  • Loading branch information
3 people committed May 12, 2022
1 parent 357da6c commit 59ee75c
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions pkgs/applications/misc/ssocr/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
{ lib, stdenv, fetchFromGitHub, imlib2, libX11 }:
{ lib, stdenv, fetchFromGitHub, imlib2, libX11, pkg-config }:

stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "ssocr";
version = "unstable-2018-08-11";
version = "2.22.1";

src = fetchFromGitHub {
owner = "auerswal";
repo = "ssocr";
rev = "5e47e26b125a1a13bc79de93a5e87dd0b51354ca";
sha256 = "0yzprwflky9a7zxa3zic7gvdwqg0zy49zvrqkdxng2k1ng78k3s7";
rev = "v${version}";
sha256 = "sha256-j1l1o1wtVQo+G9HfXZ1sJQ8amsUQhuYxFguWFQoRe/s=";
};

nativeBuildInputs = [ imlib2 libX11 ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ imlib2 libX11 ];

installFlags = [ "PREFIX=$(out)" ];

Expand Down

0 comments on commit 59ee75c

Please sign in to comment.